body {
  font: 14px pxPingFangSC-Regular, Helvetica, Arial, Microsoft Yahei, sans-serif;
  background: #fff;
}

.phone {
  display: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

.footer,
.header {
  flex: 0;
}

a:hover {
  text-decoration: none;
  color: #240f6c;
  transition: color 0.4s;
  -moz-transition: color 0.4s;
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
}

@-webkit-keyframes fromBottomFade {
  from {
    -webkit-transform: translateY(20%);
    opacity: 0;
  }
}

@keyframes fromBottomFade {
  from {
    transform: translateY(20%);
    opacity: 0;
  }
}

/* 导航 */
.pc-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
}
.pc-nav.index {
  position: absolute;
  background: unset;
  box-shadow: unset;
}
.pc-nav.index .nav .menu li a {
  color: #fff;
}
.pc-nav.index .nav .menu li .menu-son a {
  color: #000;
}

.pc-nav .nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-nav .nav .logo-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-nav .nav .logo {
  flex: 1;
}
.pc-nav .nav .logo img {
  max-width: 100%;
}
.pc-nav .nav .login {
  margin: 0 0 0 25px;
  display: flex;
  align-items: center;
}
.pc-nav .nav .login span {
  color: #240f6c;
  margin: 0 10px;
}
.pc-nav .nav .login a {
  color: #240f6c;
}

.pc-nav .nav .menu {
  display: flex;
  align-items: center;
}
.pc-nav .nav .menu li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100px;
}

.pc-nav .nav .menu li a {
  text-transform: capitalize;
  display: block;
  padding: 0 30px;
  font-size: 16px;
  white-space: nowrap;
}

.pc-nav .nav .menu li .line {
  display: none;
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 0px;
  height: 0px;
  border: 6px solid transparent;
  border-top-color: #4a99a4;
}
.pc-nav .nav .menu li.cur .line {
  display: block;
}
.pc-nav .nav .menu .cur a {
  color: #240f6c;
}
.pc-nav .nav .menu .menu-son {
  display: none;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 100;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  width: 160px;
  font-size: 14px;
  background: #fff;
  animation: fromBottomFade 0.6s ease both;
  -webkit-animation: fromBottomFade 0.6s ease both;
}

.pc-nav .nav .menu .menu-son a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #222;
  display: block;
  font-size: 14px;
  padding: 10px 20px;
  border-bottom: 1px solid #ebebeb;
  line-height: 23px;
  text-align: center;
}

.pc-nav .nav .menu .menu-son a:hover {
  color: #240f6c;
  background: #f5f5f5;
}

.pc-nav .nav .menu li:hover .line {
  display: block;
}

.pc-nav .nav .menu li:hover .menu-son {
  display: block;
}

.iFixed {
  display: none;
  position: fixed;
  z-index: 999;
}
.iFixed .iFixed-box {
  position: fixed;
  right: 20px;
  bottom: 400px;
  width: 50px;
  height: 52px;
  background-color: #5251d5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* 内页导航 */
.sidenav {
  background-color: #fff;
  box-shadow: 0 6px 12px 10px rgba(235, 241, 248, 0.975);
  /* border-bottom: 1px solid #e9e9e9; */
}

.sidenav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  height: 80px;
}
.sidenav .left a {
  text-transform: capitalize;
}

.sidenav .right ul {
  display: flex;
}

.sidenav .right ul li a {
  text-transform: capitalize;
  color: #666666;
  padding: 6px 15px;
}

.sidenav .right ul li.cur a {
  color: #191919;
  font-weight: bold;
}

/* 主体 */
.tit-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.tit {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}
.en_tit {
  position: absolute;
  left: 0;
  bottom: 8px;
  font-size: 74px;
  text-transform: uppercase;
  color: #3745ae;
}

.main .content {
  padding: 20px 40px;
  background-color: #fff;
}

.main .content .info {
  border-radius: 6px;
  margin-bottom: 20px;
}

.main .content .title {
  text-align: center;
  font-size: 24px;
  color: #000;
  font-weight: bold;
  line-height: 140%;
  margin-bottom: 10px;
}

.main .content .date {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  line-height: 140%;
}
.main .content .date p {
  margin: 0 10px;
}

/* 首页banner */
.index-banner {
}

/* 内页banner */
.inside-banner {
  margin-top: 100px;
}

.about-wrap .about {
  display: flex;
  margin: 90px 0 110px;
}
.about-wrap .left {
  height: 744px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 414px;
  color: #fff;
  background: linear-gradient(to bottom, #3f5acb, #291d7e);
}
.about-wrap .left .title {
  font-size: 130px;
  margin: 120px 0 0;
}
.about-wrap .left .tit {
  margin: 44px 0 0;
}
.about-wrap .left .en {
  margin: 20px 0 0;
}
.about-wrap .left img {
  position: absolute;
  right: 18px;
  bottom: 0;
}
.about-wrap .right .pic {
  position: absolute;
  left: -10px;
  top: -55px;
}
.about-wrap .right .detail {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 80px;
  width: 100%;
  height: calc(100% - 80px);
  border: 10px solid #f1f1f1;
  box-sizing: border-box;
}
.about-wrap .right .detail .info {
  padding: 70px 30px;
  color: #666666;
  font-size: 15px;
  line-height: 30px;
  position: relative;
}
.about-wrap .numCount {
  flex: 1;
  padding: 0 30px;
  display: flex;
}
.about-wrap .numCount li {
  display: flex;
  margin: 0 70px 0 0;
}
.about-wrap .numU-warp {
  margin: 0 10px 0;
  display: flex;
  flex-direction: column;
}
.about-wrap .numCount .numU {
  color: #1a1a1a;
}
.about-wrap .numCount span {
  margin: 0 10px 0 0;
  font-size: 40px;
  font-weight: bold;
}
.about-wrap .numCount .indc {
  font-size: 16px;
  color: #7b7b7b;
}
.about-wrap .about-menu {
  padding: 0 70px;
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap;
}
.about-wrap .about-menu.en{
  width: 400px;
}
.about-wrap .about-menu li {
  margin: 0 42px 20px 0;
  position: relative;
}
.about-wrap .about-menu li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #e1e1e1;
  border-radius: 50%;
}
.about-wrap .right .detail .more {
  position: absolute;
  right: -10px;
  bottom: -10px;
}

.product-wrap {
  background: url("../images/product-bg.png") no-repeat center;
  background-size: cover;
  margin: 80px 0 0;
  padding: 140px 0 60px;
}
.product-wrap .tit-box ul {
  display: flex;
}
.product-wrap .tit-box ul li a {
  color: #fff;
  margin: 0 0 0 40px;
}
.product-wrap .detail {
  margin: 60px 0 0;
  display: flex;
  flex-wrap: wrap;
}
.product-wrap .detail li {
  flex: 0 0 32%;
  position: relative;
  margin-right: 2%;
  margin-bottom: 20px;
  overflow: hidden;
}
.product-wrap .detail li p {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.175);
  width: 100%;
  height: 77px;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.product-wrap .detail li:nth-child(3n) {
  margin-right: 0px;
}

.product-wrap .detail img:hover {
  transform: scale(1.1, 1.1);
}
.product-wrap .detail p:hover {
  color: #240f6c;
}

.case-wrap {
  margin: 80px 0 0;
  padding: 140px 0 60px;
}
.case-wrap .tit-box .tit {
  color: #2e2d8e;
}
.case-wrap .tit-box .en_tit {
  color: #eeeeee;
}
.case-wrap .detail {
  margin: 60px 0 0;
  display: flex;
  flex-wrap: wrap;
}
.case-wrap .detail li {
  flex: 0 0 32%;
  position: relative;
  margin-right: 2%;
  margin-bottom: 20px;
  overflow: hidden;
}
.case-wrap .detail li p {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.175);
  width: 100%;
  height: 77px;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.case-wrap .detail img{
  width: 100%;
  height: 310px;
  object-fit: cover;
}
.case-wrap .detail li:nth-child(3n) {
  margin-right: 0px;
}
.case-wrap .detail img:hover {
  transform: scale(1.1, 1.1);
}
.case-wrap .detail p:hover {
  color: #240f6c;
}

.news-wrap {
  margin: 80px 0 0;
  padding: 140px 0 115px;
  background: #f8f8f8 url("../images/news-bg.png") no-repeat center;
  background-size: cover;
}
.news-wrap .tit-box .tit {
  color: #2e2d8e;
}
.news-wrap .tit-box .en_tit {
  color: #eeeeee;
}
.news-wrap .detail {
  margin: 70px 0 0;
  display: flex;
}
.news-wrap .j-tab-nav li {
  margin: 0 0 30px 0;
}
.news-wrap .j-tab-nav li a {
  font-size: 22px;
}
.news-wrap .j-tab-nav img {
  margin: 60px 0 0 0;
}
.news-wrap .j-tab-nav li a {
  color: #838383;
  font-weight: bold;
}
.news-wrap .j-tab-nav .current a {
  color: #333333;
}
.news-wrap .j-tab-con {
  margin: 0 0 0 190px;
  flex: 1;
}
.news-wrap .j-tab-con ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-wrap .j-tab-con ul li {
  flex: 0 0 49%;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
  padding: 50px 20px 46px 50px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.news-wrap .j-tab-con .title-box {
  display: flex;
  margin: 0 0 34px 0;
}
.news-wrap .j-tab-con .date {
  flex: 0 0 76px;
}
.news-wrap .j-tab-con .date .day {
  font-size: 26px;
  color: #000000;
}
.news-wrap .j-tab-con .date .year {
  font-size: 14px;
  color: #999999;
}
.news-wrap .j-tab-con .title {
  font-size: 16px;
  color: #000000;
  margin: 0 0 0 40px;
}
.news-wrap .j-tab-con .des-box {
  display: flex;
}
.news-wrap .j-tab-con .line {
  flex: 0 0 76px;
  display: flex;
  align-items: center;
}
.news-wrap .j-tab-con .line p {
  width: 100%;
  height: 1px;
  background-color: #c2c2c2;
}
.news-wrap .j-tab-con .des {
  font-size: 14px;
  color: #666666;
  margin: 0 0 0 40px;
}
.news-wrap .j-tab-con li:hover .title,
.news-wrap .j-tab-con li:hover .day,
.news-wrap .j-tab-con li:hover .year,
.news-wrap .j-tab-con li:hover .des {
  color: #2e2d8e;
}
.news-wrap .j-tab-con li:hover .line p {
  background: #2e2d8e;
}
.news-wrap .j-tab-con li:hover {
  transform: translateY(-2%);
  box-shadow: 1px 4px 10px 2px #ccc;
}
.news-wrap .j-tab-con .item {
  display: none;
}
.news-wrap .j-tab-con .item:first-child {
  display: block;
}

/* 内页 */
.inset {
  padding: 40px 0;
  background: #eceef0;
}
.article {
  border-radius: 6px;
  padding: 20px 25px;
}
.article .detail li {
  margin: 0 0 13px 0;
  background-color: #f6fbfe;
}
.article .detail li a {
  display: flex;
  align-items: center;
  padding: 25px 40px;
  font-size: 16px;
  overflow: hidden;
}
.article .detail li a span {
  margin: 0 25px 0 0;
  width: 13px;
  height: 13px;
  background-color: #c8def1;
  border-radius: 50%;
}
.article .detail li a .title {
  flex: 1 1 auto;
}
.article .detail li a .date {
  flex: 0 0 100px;
  text-align: right;
}
.article .detail li a:hover span {
  background-color: #240f6c;
}
.article .detail li a:hover {
  color: #240f6c;
}

.pagecol .editor {
  font-size: 16px;
}

/* 内页搜索 */
.picture .detail {
  display: flex;
  flex-wrap: wrap;
}
.picture .detail li {
  flex: 0 1 calc(97% / 4);
  border-radius: 3px;
  overflow: hidden;
  margin-right: 1%;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
}
.picture .detail li:nth-child(4n) {
  margin-right: 0;
}
.picture .detail li .img-max {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 240px;
  overflow: hidden;
}
.picture .detail li .img-max img {
  height: 240px;
}
.picture .detail li .title{
  text-align: center;
  padding: 20px 10px;
}
.picture .detail li:hover {
  transform: translateY(-2%);
  box-shadow: 1px 4px 10px 2px #ccc;
}
.picture .detail li:hover img {
  transform: scale(1.1, 1.1);
}
.picture .show .image {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.picture .show .image img {
  max-width: 100%;
}
.picture.gcal a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 产品 */
.product .detail {
  display: flex;
  flex-wrap: wrap;
}
.product .detail li {
  flex: 0 1 calc(97% / 4);
  border-radius: 3px;
  overflow: hidden;
  margin-right: 1%;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
}
.product .detail li:nth-child(4n) {
  margin-right: 0;
}
.product .detail li .img-max {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 240px;
  overflow: hidden;
}
.product .detail li .img-max img {
  height: 240px;
}
.product .detail li p {
  text-align: center;
  padding: 20px 0;
}
.product .detail li:hover {
  transform: translateY(-2%);
  box-shadow: 1px 4px 10px 2px #ccc;
}
.product .detail li:hover img {
  transform: scale(1.1, 1.1);
}
.product .show .image {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.product .show .image img {
  max-width: 100%;
}

.video ul {
  display: flex;
  flex-wrap: wrap;
}
.video ul li {
  flex: 0 1 calc(96% / 4);
  border-radius: 3px;
  overflow: hidden;
  margin-right: 1%;
  margin-bottom: 20px;
}
.video ul li .img-full {
  border-radius: 12px;
  height: 190px;
  overflow: hidden;
}
.video ul li .title {
  margin: 10px 0;
  text-align: center;
}
.video ul li:nth-child(4n) {
  margin-right: 0;
}
.video ul li:hover img {
  transform: scale(1.1, 1.1);
}

.dsj-box {
  background: url("../images/pic9.png") no-repeat center;
  background-size: cover;
  padding: 40px 0;
}
.dsj-box .pic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dsj-box .steps {
  margin: 40px 0 0;
}
.dsj-box .steps-item {
  display: flex;
  align-items: center;
  position: relative;
}
.dsj-box .steps-item .left,
.dsj-box .steps-item .right {
  flex: 1;
}
.dsj-box .steps-item .line {
  width: 1px;
  height: auto;
  background-color: #0231aa;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}
.dsj-box .steps-item .left .title {
  color: #fff;
  font-size: 28px;
  padding: 22px 20px;
  width: 340px;
  background-image: linear-gradient(
    to right,
    #240f6c,
    #51418a,
    #c3c0d6,
    #f4f6f7
  );
}
.dsj-box .steps-item .left .title:hover {
  cursor: pointer;
  background-image: linear-gradient(
    to right,
    #1c57eb,
    #114ce0,
    #8f99b3,
    #909cb9
  );
  transition: all 0.6s ease 0s;
}
.dsj-box .steps-item .info {
  font-size: 18px;
  line-height: 34px;
  font-weight: bold;
  color: #393e4e;
}
.dsj-box .steps-item .left .info{
  margin: 0 20px 0 0;
}
.dsj-box .steps-item .right .info{
  margin: 0 0 0 20px;
}
.dsj-box .steps-item .left .title-box,
.dsj-box .steps-item .right .title-box {
  position: relative;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  width: 100%;
  border-bottom: 1px solid #0231aa;
  display: flex;
}
.dsj-box .steps-item .right .title-box {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.dsj-box .steps-item .left .title-box::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #0231aa;
}
.dsj-box .steps-item .right .title-box::after {
  content: "";
  position: absolute;
  left: -7px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #0231aa;
}
.dsj-box .steps-item .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.dsj-box .steps-item .right .title {
  color: #fff;
  font-size: 28px;
  padding: 22px 20px;
  width: 340px;
  background-image: linear-gradient(
    to right,
    #f4f6f7,
    #c3c0d6,
    #51418a,
    #240f6c
  );
}
.dsj-box .steps-item .right .title:hover {
  cursor: pointer;
  background-image: linear-gradient(
    to right,
    #909cb9,
    #8f99b3,
    #114ce0,
    #1c57eb
  );
  transition: all 0.6s ease 0s;
}
.dsj-box .year {
  margin: 0 auto;
  margin-bottom: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #605fd8;
  width: 78px;
  height: 78px;
  border-radius: 50%;
}
.dsj-box .year .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #240f6c;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 20px;
  border-radius: 50%;
}

.job {
  padding: 30px 0;
}
.job .job-title {
  font-size: 44px;
  margin: 0 0 40px 0;
}
.job .detail a {
  padding: 38px 48px;
  background-color: #f8f8f8;
  display: block;
  margin: 0 0 20px 0;
}
.job .detail .title {
  position: relative;
  display: inline-block;
  font-size: 22px;
  padding: 0 0 22px 0;
  font-weight: bold;
  border-bottom: 1px solid #cccccc;
}
.job .detail .des {
  margin: 26px 0 0;
  font-size: 18px;
}
.job .detail .ask {
  margin: 14px 0 0;
  font-size: 18px;
}
.job .detail .des span,
.job .detail .ask span {
  font-weight: bold;
}

.orientation {
  margin: 20px 0 0;
}
.orientation span {
  text-transform: capitalize;
}

/* 底部 */
.footer {
  background-color: #272727;
}

.footer-nav .container {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #333333;
}
.footer-nav .nav {
  display: inline-flex;
  align-items: center;
}
.footer-nav .nav li a {
  text-transform: capitalize;
  color: #fff;
}
.footer-nav .nav li a:hover {
  color: #5251d5;
}
.footer-nav .nav li span {
  margin: 0 20px;
  color: #636363;
}
.footer-nav .nav li:last-child {
  display: none;
}
.footer-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 85px 0;
  color: #b4b4b4;
  border-bottom: 1px solid #333333;
}
.footer-top .address {
  margin: 25px 0 0;
  line-height: 25px;
}
.footer-top .right p {
  margin: 15px 0 0;
  text-align: center;
}

.footer-bottom {
  padding: 35px 0;
  color: #b4b4b4;
}

.footer-bottom .copyright {
  display: flex;
  justify-content: center;
  color: #b4b4b4;
}
.footer-bottom .copyright *{
  color: #b4b4b4 !important;
}
.mypage {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.mypage .pagination {
  display: flex;
  justify-content: center;
}
.mypage li {
  display: inline-block;
  color: #333333;
  background: #eff1f4;
  border-radius: 5px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  padding: 0px 15px;
  margin: 0 5px;
}
.mypage li.active {
  background: #240f6c;
  color: #ffffff;
}
.mypage .rows {
  border: none;
}
